home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Delphi Magazine Collection 2001
/
Delphi Magazine Collection 20001 (2001).iso
/
DISKS
/
Issue50
/
IPC
/
Messages
/
MsgRcv.dpr
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
Text File
|
1999-08-31
|
217 b
|
14 lines
program MsgRcv;
uses
Forms,
MsgRcvU in 'MsgRcvU.pas' {MsgReceiveForm};
{$R *.RES}
begin
Application.Initialize;
Application.CreateForm(TMsgReceiveForm, MsgReceiveForm);
Application.Run;
end.